home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 7
/
BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso
/
Files
/
Hyper
/
Ap-Az
/
AutoScripter.cpt
/
AutoScripter
/
card_5095.txt
< prev
next >
Wrap
Text File
|
1988-03-05
|
4KB
|
174 lines
-- card: 5095 from stack: in
-- bmap block id: 5759
-- flags: 0000
-- background id: 2786
-- name: show items
-- part 1 (button)
-- low flags: 00
-- high flags: 8003
-- rect: left=180 top=137 right=159 bottom=295
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: cards
----- HyperTalk script -----
on mouseUp
ask "How many cards (or all)?" with "all"
put it && "cards" & return after holder
put holder after field "script-it" of card "main card"
visual effect wipe left
pop card
end mouseUp
-- part 2 (button)
-- low flags: 00
-- high flags: 8003
-- rect: left=180 top=163 right=185 bottom=296
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: menuBar
----- HyperTalk script -----
on mouseUp
global holder
put "menuBar" & return after holder
put holder after field "script-it" of card "main card"
visual effect wipe left
pop card
end mouseUp
-- part 3 (button)
-- low flags: 00
-- high flags: 8003
-- rect: left=179 top=189 right=210 bottom=297
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: tool window
----- HyperTalk script -----
on mouseUp
global holder
put "tool window" & return after holder
put holder after field "script-it" of card "main card"
visual effect wipe left
pop card
end mouseUp
-- part 4 (button)
-- low flags: 00
-- high flags: 8003
-- rect: left=180 top=215 right=236 bottom=300
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: pattern window
----- HyperTalk script -----
on mouseUp
global holder
put "pattern window" & return after holder
put holder after field "script-it" of card "main card"
visual effect wipe left
pop card
end mouseUp
-- part 5 (button)
-- low flags: 00
-- high flags: 8003
-- rect: left=180 top=241 right=262 bottom=301
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: message box
----- HyperTalk script -----
on mouseUp
global holder
put "message box" & return after holder
put holder after field "script-it" of card "main card"
visual effect wipe left
pop card
end mouseUp
-- part 6 (button)
-- low flags: 00
-- high flags: 8003
-- rect: left=181 top=267 right=288 bottom=302
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: button
----- HyperTalk script -----
on mouseUp
global holder
answer "What kind of button?" with "background" or "card"
put it into butType
ask "Enter button's name:"
put butType && "button" && quote & it & quote & return after holder
put holder after field "script-it" of card "main card"
pop card
end mouseUp
-- part 7 (button)
-- low flags: 00
-- high flags: 8003
-- rect: left=181 top=293 right=314 bottom=302
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: field
----- HyperTalk script -----
on mouseUp
global holder
answer "What kind of field?" with "background" or "card"
put it into fieldType
ask "Enter field's name:"
put fieldType && "button" && quote & it & quote & return after holder
put holder after field "script-it" of card "main card"
pop card
end mouseUp